home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-05
/
src_1218.zip
/
FTP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-01
|
412b
|
17 lines
#ifndef _FTP_H
#define _FTP_H
/* Definitions common to both FTP servers and clients */
#define BLKSIZE 2048 /* Chunk size for file I/O */
#define ASCII_TYPE 0
#define IMAGE_TYPE 1
#define LOGICAL_TYPE 2
/* In ftpsubr.c: */
long sendfile __ARGS((FILE *fp,int s,int mode,int hash));
long recvfile __ARGS((FILE *fp,int s,int mode,int hash));
int isbinary __ARGS((FILE *fp));
#endif /* _FTP_H */